home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / gfx / misc / gnuplot-3.7src.lha / gnuplot-3.7src / gnuplot-3.7.lha / gnuplot-3.7 / fnproto.h < prev    next >
Text File  |  1998-04-15  |  5KB  |  138 lines

  1. /* $Id: fnproto.h,v 1.9 1998/03/22 22:31:32 drd Exp $ */
  2.  
  3. /* GNUPLOT - fnproto.h */
  4.  
  5. /*[
  6.  * Copyright 1986 - 1993, 1998   Thomas Williams, Colin Kelley
  7.  *
  8.  * Permission to use, copy, and distribute this software and its
  9.  * documentation for any purpose with or without fee is hereby granted,
  10.  * provided that the above copyright notice appear in all copies and
  11.  * that both that copyright notice and this permission notice appear
  12.  * in supporting documentation.
  13.  *
  14.  * Permission to modify the software is granted, but not the right to
  15.  * distribute the complete modified source code.  Modifications are to
  16.  * be distributed as patches to the released version.  Permission to
  17.  * distribute binaries produced by compiling modified sources is granted,
  18.  * provided you
  19.  *   1. distribute the corresponding source modifications from the
  20.  *    released version in the form of a patch file along with the binaries,
  21.  *   2. add special version identification to distinguish your version
  22.  *    in addition to the base release version number,
  23.  *   3. provide your name and address as the primary contact for the
  24.  *    support of your modified version, and
  25.  *   4. retain our contact information in regard to use of the base
  26.  *    software.
  27.  * Permission to distribute the released version of the source code along
  28.  * with corresponding source modifications in the form of a patch file is
  29.  * granted with same provisions 2 through 4 for binary distributions.
  30.  *
  31.  * This software is provided "as is" without express or implied warranty
  32.  * to the extent permitted by applicable law.
  33. ]*/
  34.  
  35.  
  36. /* prototypes for gnuplot function primitives. These functions are not called
  37.    directly, only via a function table.
  38. */
  39.  
  40. /* Prototypes from file "internal.c" */
  41.  
  42. void f_push __PROTO((union argument *x));
  43. void f_pushc __PROTO((union argument *x));
  44. void f_pushd1 __PROTO((union argument *x));
  45. void f_pushd2 __PROTO((union argument *x));
  46. void f_pushd __PROTO((union argument *x));
  47. void f_call __PROTO((union argument *x));
  48. void f_calln __PROTO((union argument *x));
  49. void f_lnot __PROTO((void));
  50. void f_bnot __PROTO((void));
  51. void f_bool __PROTO((void));
  52. void f_lor __PROTO((void));
  53. void f_land __PROTO((void));
  54. void f_bor __PROTO((void));
  55. void f_xor __PROTO((void));
  56. void f_band __PROTO((void));
  57. void f_uminus __PROTO((void));
  58. void f_eq __PROTO((void));
  59. void f_ne __PROTO((void));
  60. void f_gt __PROTO((void));
  61. void f_lt __PROTO((void));
  62. void f_ge __PROTO((void));
  63. void f_le __PROTO((void));
  64. void f_plus __PROTO((void));
  65. void f_minus __PROTO((void));
  66. void f_mult __PROTO((void));
  67. void f_div __PROTO((void));
  68. void f_mod __PROTO((void));
  69. void f_power __PROTO((void));
  70. void f_factorial __PROTO((void));
  71. int f_jump __PROTO((union argument *x));
  72. int f_jumpz __PROTO((union argument *x));
  73. int f_jumpnz __PROTO((union argument *x));
  74. int f_jtern __PROTO((union argument *x));
  75.  
  76. /* Prototypes from file "standard.c" */
  77.  
  78. void f_real __PROTO((void));
  79. void f_imag __PROTO((void));
  80. void f_int __PROTO((void));
  81. void f_arg __PROTO((void));
  82. void f_conjg __PROTO((void));
  83. void f_sin __PROTO((void));
  84. void f_cos __PROTO((void));
  85. void f_tan __PROTO((void));
  86. void f_asin __PROTO((void));
  87. void f_acos __PROTO((void));
  88. void f_atan __PROTO((void));
  89. void f_atan2 __PROTO((void));
  90. void f_sinh __PROTO((void));
  91. void f_cosh __PROTO((void));
  92. void f_tanh __PROTO((void));
  93. void f_asinh __PROTO((void));
  94. void f_acosh __PROTO((void));
  95. void f_atanh __PROTO((void));
  96. void f_void __PROTO((void));
  97. void f_abs __PROTO((void));
  98. void f_sgn __PROTO((void));
  99. void f_sqrt __PROTO((void));
  100. void f_exp __PROTO((void));
  101. void f_log10 __PROTO((void));
  102. void f_log __PROTO((void));
  103. void f_floor __PROTO((void));
  104. void f_ceil __PROTO((void));
  105. void f_besj0 __PROTO((void));
  106. void f_besj1 __PROTO((void));
  107. void f_besy0 __PROTO((void));
  108. void f_besy1 __PROTO((void));
  109.  
  110. void f_tmsec __PROTO((void));
  111. void f_tmmin __PROTO((void));
  112. void f_tmhour __PROTO((void));
  113. void f_tmmday __PROTO((void));
  114. void f_tmmon __PROTO((void));
  115. void f_tmyear __PROTO((void));
  116. void f_tmwday __PROTO((void));
  117. void f_tmyday __PROTO((void));
  118.  
  119. /* Prototypes from file "specfun.c" */
  120.  
  121. void f_erf __PROTO((void));
  122. void f_erfc __PROTO((void));
  123. void f_ibeta __PROTO((void));
  124. void f_igamma __PROTO((void));
  125. void f_gamma __PROTO((void));
  126. void f_lgamma __PROTO((void));
  127. void f_rand __PROTO((void));
  128. void f_normal __PROTO((void));
  129. void f_inverse_normal __PROTO((void));
  130. void f_inverse_erf __PROTO((void));
  131.  
  132. /* prototypes from file "datafile.c" */
  133.  
  134. void f_dollars __PROTO((union argument *x));
  135. void f_column  __PROTO((void));
  136. void f_valid   __PROTO((void));
  137. void f_timecolumn   __PROTO((void));
  138.